3.15 \(\int x^3 (A+B x) \left (b x+c x^2\right )^2 \, dx\)

Optimal. Leaf size=55 \[ \frac{1}{6} A b^2 x^6+\frac{1}{8} c x^8 (A c+2 b B)+\frac{1}{7} b x^7 (2 A c+b B)+\frac{1}{9} B c^2 x^9 \]

[Out]

(A*b^2*x^6)/6 + (b*(b*B + 2*A*c)*x^7)/7 + (c*(2*b*B + A*c)*x^8)/8 + (B*c^2*x^9)/
9

_______________________________________________________________________________________

Rubi [A]  time = 0.158385, antiderivative size = 55, normalized size of antiderivative = 1., number of steps used = 3, number of rules used = 2, integrand size = 20, \(\frac{\text{number of rules}}{\text{integrand size}}\) = 0.1 \[ \frac{1}{6} A b^2 x^6+\frac{1}{8} c x^8 (A c+2 b B)+\frac{1}{7} b x^7 (2 A c+b B)+\frac{1}{9} B c^2 x^9 \]

Antiderivative was successfully verified.

[In]  Int[x^3*(A + B*x)*(b*x + c*x^2)^2,x]

[Out]

(A*b^2*x^6)/6 + (b*(b*B + 2*A*c)*x^7)/7 + (c*(2*b*B + A*c)*x^8)/8 + (B*c^2*x^9)/
9

_______________________________________________________________________________________

Rubi in Sympy [A]  time = 16.4459, size = 49, normalized size = 0.89 \[ \frac{A b^{2} x^{6}}{6} + \frac{B c^{2} x^{9}}{9} + \frac{b x^{7} \left (2 A c + B b\right )}{7} + \frac{c x^{8} \left (A c + 2 B b\right )}{8} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]  rubi_integrate(x**3*(B*x+A)*(c*x**2+b*x)**2,x)

[Out]

A*b**2*x**6/6 + B*c**2*x**9/9 + b*x**7*(2*A*c + B*b)/7 + c*x**8*(A*c + 2*B*b)/8

_______________________________________________________________________________________

Mathematica [A]  time = 0.017425, size = 55, normalized size = 1. \[ \frac{1}{6} A b^2 x^6+\frac{1}{8} c x^8 (A c+2 b B)+\frac{1}{7} b x^7 (2 A c+b B)+\frac{1}{9} B c^2 x^9 \]

Antiderivative was successfully verified.

[In]  Integrate[x^3*(A + B*x)*(b*x + c*x^2)^2,x]

[Out]

(A*b^2*x^6)/6 + (b*(b*B + 2*A*c)*x^7)/7 + (c*(2*b*B + A*c)*x^8)/8 + (B*c^2*x^9)/
9

_______________________________________________________________________________________

Maple [A]  time = 0.001, size = 52, normalized size = 1. \[{\frac{B{c}^{2}{x}^{9}}{9}}+{\frac{ \left ( A{c}^{2}+2\,Bbc \right ){x}^{8}}{8}}+{\frac{ \left ( 2\,Abc+{b}^{2}B \right ){x}^{7}}{7}}+{\frac{A{b}^{2}{x}^{6}}{6}} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]  int(x^3*(B*x+A)*(c*x^2+b*x)^2,x)

[Out]

1/9*B*c^2*x^9+1/8*(A*c^2+2*B*b*c)*x^8+1/7*(2*A*b*c+B*b^2)*x^7+1/6*A*b^2*x^6

_______________________________________________________________________________________

Maxima [A]  time = 0.689707, size = 69, normalized size = 1.25 \[ \frac{1}{9} \, B c^{2} x^{9} + \frac{1}{6} \, A b^{2} x^{6} + \frac{1}{8} \,{\left (2 \, B b c + A c^{2}\right )} x^{8} + \frac{1}{7} \,{\left (B b^{2} + 2 \, A b c\right )} x^{7} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]  integrate((c*x^2 + b*x)^2*(B*x + A)*x^3,x, algorithm="maxima")

[Out]

1/9*B*c^2*x^9 + 1/6*A*b^2*x^6 + 1/8*(2*B*b*c + A*c^2)*x^8 + 1/7*(B*b^2 + 2*A*b*c
)*x^7

_______________________________________________________________________________________

Fricas [A]  time = 0.247441, size = 1, normalized size = 0.02 \[ \frac{1}{9} x^{9} c^{2} B + \frac{1}{4} x^{8} c b B + \frac{1}{8} x^{8} c^{2} A + \frac{1}{7} x^{7} b^{2} B + \frac{2}{7} x^{7} c b A + \frac{1}{6} x^{6} b^{2} A \]

Verification of antiderivative is not currently implemented for this CAS.

[In]  integrate((c*x^2 + b*x)^2*(B*x + A)*x^3,x, algorithm="fricas")

[Out]

1/9*x^9*c^2*B + 1/4*x^8*c*b*B + 1/8*x^8*c^2*A + 1/7*x^7*b^2*B + 2/7*x^7*c*b*A +
1/6*x^6*b^2*A

_______________________________________________________________________________________

Sympy [A]  time = 0.129765, size = 54, normalized size = 0.98 \[ \frac{A b^{2} x^{6}}{6} + \frac{B c^{2} x^{9}}{9} + x^{8} \left (\frac{A c^{2}}{8} + \frac{B b c}{4}\right ) + x^{7} \left (\frac{2 A b c}{7} + \frac{B b^{2}}{7}\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]  integrate(x**3*(B*x+A)*(c*x**2+b*x)**2,x)

[Out]

A*b**2*x**6/6 + B*c**2*x**9/9 + x**8*(A*c**2/8 + B*b*c/4) + x**7*(2*A*b*c/7 + B*
b**2/7)

_______________________________________________________________________________________

GIAC/XCAS [A]  time = 0.266344, size = 72, normalized size = 1.31 \[ \frac{1}{9} \, B c^{2} x^{9} + \frac{1}{4} \, B b c x^{8} + \frac{1}{8} \, A c^{2} x^{8} + \frac{1}{7} \, B b^{2} x^{7} + \frac{2}{7} \, A b c x^{7} + \frac{1}{6} \, A b^{2} x^{6} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]  integrate((c*x^2 + b*x)^2*(B*x + A)*x^3,x, algorithm="giac")

[Out]

1/9*B*c^2*x^9 + 1/4*B*b*c*x^8 + 1/8*A*c^2*x^8 + 1/7*B*b^2*x^7 + 2/7*A*b*c*x^7 +
1/6*A*b^2*x^6